home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / vg-2.03 / video / vbios.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  737 b   |  30 lines

  1. /*
  2.  * Copyright (C) 1990-1992 Michael Davidson.
  3.  * All rights reserved.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this software
  6.  * and its documentation for any purpose and without fee is hereby
  7.  * granted, provided that the above copyright notice appear in all
  8.  * copies and that both that copyright notice and this permission
  9.  * notice appear in supporting documentation.
  10.  *
  11.  * This software is provided "as is" without express or implied warranty.
  12.  */
  13.  
  14. #ifndef    VBIOS_H
  15. #define    VBIOS_H
  16.  
  17. int    VBiosInit();
  18.  
  19. void    VBiosINT10();
  20.  
  21. void *    VBiosGetFontInfo(int code);
  22. int    VBiosDisableBlink();
  23. int    VBiosSetCursorPosition(int x, int y);
  24. int    VBiosSetMode(int mode);
  25. int    VBiosGetMode();
  26.  
  27. #define    VBIOS_SEG    0x1000
  28.  
  29. #endif    /* VBIOS_H */
  30.